#include <bits/stdc++.h>
using namespace std;
#define all(c) (c).begin(), (c).end()
#define rall(A) A.rbegin(),A.rend()
#define pb push_back
#define f first
#define s second
#define dbg(x) do {cerr << #x <<" = " << (x) << endl; } while (false)
//#define dbg(x) do {} while (false)
#define raya do {cerr << "===========================" << endl; } while (false)
//#define raya do {} while (false)
#define bpc __builtin_popcountll//numero de bits para long long
#define bclz __builtin_clzll//leading zeros para ll
#define max_bit(A) 31-__builtin_clz(A)
#define endl "\n"
typedef long long ll;
typedef pair<int, int> ii;
const int maxn = 70;
const int inf = 1e9;
int boar[maxn][maxn];
int n,m,k;
vector<int>gen(vector<int> x){
int dp[maxn][maxn];
for(int i=0;i<maxn;i++)
for(int j=0;j<maxn;j++)
dp[i][j] = -inf;
dp[0][0] = 0; //take-resto
for(int pos=0;pos<m;pos++){
for(int tk=min(pos+1,m/2);tk>0;tk--){
for(int d=0;d<k;d++){
dp[tk][(d+x[pos])%k] = max(dp[tk][(d+x[pos])%k] , dp[tk-1][d]+x[pos]);
}
}
}
vector<int>ret(k,-inf);
for(int d=0;d<k;d++)
for(int tk=0;tk<=m/2;tk++)
ret[d] = max(ret[d] , dp[tk][d]) ;
return ret;
}
vector<int>merge(vector<int> x,vector<int>y){
vector<int>ret(k,-inf);
for(int i=0;i<k;i++){
for(int j=0;j<k;j++){
ret[(i+j)%k] = max(ret[(i+j)%k] , x[i]+y[j]);
}
}
return ret;
}
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin>>n>>m>>k;
vector<vector<int>> v(n,vector<int>(m));
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
cin>>v[i][j];
vector<int>lst(k,-inf);
lst[0] = 0 ;
for(int i=0;i<n;i++){
lst = merge(lst,gen(v[i]));
}
cout<<lst[0]<<endl;
return 0;
}
222. Count Complete Tree Nodes | 215. Kth Largest Element in an Array |
198. House Robber | 153. Find Minimum in Rotated Sorted Array |
150. Evaluate Reverse Polish Notation | 144. Binary Tree Preorder Traversal |
137. Single Number II | 130. Surrounded Regions |
129. Sum Root to Leaf Numbers | 120. Triangle |
102. Binary Tree Level Order Traversal | 96. Unique Binary Search Trees |
75. Sort Colors | 74. Search a 2D Matrix |
71. Simplify Path | 62. Unique Paths |
50. Pow(x, n) | 43. Multiply Strings |
34. Find First and Last Position of Element in Sorted Array | 33. Search in Rotated Sorted Array |
17. Letter Combinations of a Phone Number | 5. Longest Palindromic Substring |
3. Longest Substring Without Repeating Characters | 1312. Minimum Insertion Steps to Make a String Palindrome |
1092. Shortest Common Supersequence | 1044. Longest Duplicate Substring |
1032. Stream of Characters | 987. Vertical Order Traversal of a Binary Tree |
952. Largest Component Size by Common Factor | 212. Word Search II |